Skip to main content
Version: 12.10.0

structure



src
├── main
│ ├── java
│ │ └── org
│ │ └── navida
│ │ └── pro
│ │ ├── config # Configuration classes
│ │ ├── controller # REST API controllers
│ │ ├── dto # Data Transfer Objects
│ │ ├── exception # Custom exceptions
│ │ ├── model # Entity classes
│ │ ├── repository # JPA repositories
│ │ ├── service # Service layer interfaces and implementations
│ │ ├── util # Utility classes
│ │ ├── YourApplication.java # Main application class
│ ├── resources
│ │ ├── application.yml # Application configuration
│ │ ├── application.properties # Optional alternative configuration
│ │ ├── static # Static resources if using (e.g., HTML, CSS, JS)
│ │ ├── templates # Thymeleaf templates (if using)
│ │ ├── messages.properties # Message bundle for i18n
│ │ └── META-INF # Additional resources
├── test
│ ├── java
│ │ └── org
│ │ └── navida
│ │ └── pro
│ │ ├── controller # Controller tests
│ │ ├── service # Service tests
│ │ ├── YourApplicationTests.java # Main test class
│ ├── resources # Test resources
│ │ ├── application.properties # specific configuration
| | |--logback.xml # log back configurations


Sample Configurations :